home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 40 / PC Gamer IT CD 40 1-2.iso / ELINK / CLARISHP / _SETUP.1 / HOMEPAGE.exe / 1009 / 173 < prev    next >
Text File  |  1997-02-20  |  3KB  |  78 lines

  1. // -----
  2. // vdl173.txt
  3. // Copyright 1996 Claris
  4. // -----
  5.  
  6.  
  7. //Prompt for a list of font names
  8.  
  9. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  10. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  11. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  12.  
  13. //This section contains all localizable string constants for this VDL program. Be sure to 
  14. //include the backslash character at the end of each line of a multi-line string, except for the last line.
  15. //You may also flatten multiline constants into a single line, if you prefer
  16.  
  17. #define kLit1     "The browser will display text in the font you specify here." \
  18.                "  You may specify several fonts (separated by commas)," \
  19.                     " such as \"helvetica, arial, geneva\", in which case the " \
  20.                     " browser will use the first available font."
  21.  
  22.  
  23. //Localized Fonts
  24.  
  25. #if Platform_Mac
  26.     #define SmallFont  Font = {Geneva, 9, {Plain}}
  27. #endif
  28.  
  29.  
  30. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  31. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  32. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  33.  
  34.  
  35.  
  36. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  37. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  38. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  39.  
  40. //This section contains integer constants that are used to format this VDL program.
  41. //These are localizable - they only need to be changed if the localized strings 
  42. //are sufficiently longer than the US strings. Localize the strings first, then the constants.
  43. #define kDialogWidth 350
  44.  
  45. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  46. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  47. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  48.  
  49. //No further localizable data past this point
  50.  
  51. /************************** END LOCALIZABLE DATA ***************************************************/
  52. /************************** END LOCALIZABLE DATA ***************************************************/
  53. /************************** END LOCALIZABLE DATA ***************************************************/
  54.  
  55.  
  56. Margin(10,10,10,10, BackColor =  Dialog, Width = kDialogWidth)
  57.     VList(Width = UseParent)
  58.         {
  59.         StaticText(prompt, Width = UseParent);
  60.         
  61.         Spacer(Height = 6, Width = 0, ScaleV);
  62.         EditText(result, Width = UseParent, BackColor = {65535, 65535, 65535} );
  63.         Spacer(Height = 6, Width = 0, ScaleV);
  64.         
  65.         StaticText(    kLit1, 
  66.         
  67.                         #if Platform_Mac
  68.                         SmallFont, 
  69.                         #endif
  70.                         
  71.                         Alignment = Center, 
  72.                         Width = UseParent);
  73.         
  74.         Spacer(Height = 6, Width = 0, ScaleV);
  75.         
  76.         StandardDialogButtonsH;        
  77.         } //VList
  78.